home *** CD-ROM | disk | FTP | other *** search
/ PowerPlay 1999 September / PowerPlay0999.iso / Patches / Civilisation Call to Power 1.1 Patch DEU.exe / ldl / string.ldl < prev   
Text File  |  1999-05-18  |  3KB  |  100 lines

  1.  
  2. global_strings 
  3. {
  4.  
  5. ############################
  6. #
  7. #    After installation, this ends up as a registry key directly
  8. #    under the HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/
  9. #    CurrentVersion/Uninstall key.
  10. #
  11.     
  12.     string szLogfilePath "Uninstall/Civilization-Call to Power.log"
  13.     string szExePath "Ctp_program/ctp/civctp.exe"
  14.     string szUninstallKey "Activision_CivCTPUninstallKey"
  15.  
  16.     string szQA_1 "GM-1126"
  17.     
  18.  
  19. ############################
  20. #
  21. #    in the anet.inf file in the game's installed directory, we have two values:
  22. #
  23. #    [Version Info]
  24. #    Version=X
  25. #
  26. #    [ActiveNet]
  27. #    Version=X
  28. #
  29. #    both of these fields are required.  The [Version Info] field is used for display purposes only.
  30. #    it means nothing.  The activenet number is the real version number used for comparison.  conceptually,
  31. #    think of it as the 'major.minor' build number of a product, like '37.2'.  the updater and patch programs
  32. #    display the [Version Info] field (like '1.01'), determined by marketing.  the major.minor version numbers 
  33. #    are compared as integers:
  34. #
  35. #        "37.12" = thirty-seven point twelve  >
  36. #        "37.7" = thirty-seven point seven   >  
  37. #        "36.989" = thirty-six point nine-hundred-eighty-nine
  38. #
  39. #    'szFromVersion' is the minimum version number to which the patch is applicable.  Use
  40. #    '0.0' to indicate no lower limit.  'szPatchVersion' is the version the game is being patched
  41. #    to.  the dispayed number is also updated by the patch program.  The displayed starting number is the current
  42. #    value of the field in anet.inf.  The displayed finishing number is the final value of 'szDisplayPatchVersion'.
  43. #    (found in string_e.ldl)
  44. #
  45. #    all 3 fields must be present.  if the [ActiveNet] number is missing in the anet.inf file, the patch program
  46. #    assumes it is "0.0".  if the [Version Info] number is missing, "1.0" is assumed.
  47. #
  48.     string szFromVersion "0.0"
  49.     string szPatchVersion "051.70"
  50.  
  51. }
  52.  
  53. filecopy
  54. {
  55.     copy_0 
  56.     {
  57.         string src "data"
  58.         string dest "."
  59.         string recurse ""
  60.     }
  61.     
  62. #    copy_2
  63. #    {
  64. #        string src "system"
  65. #        string dest "SYSDIR:/"
  66. #        string recurse ""
  67. #        string shared ""        
  68. #        string update "version"
  69. #    }
  70.     
  71. }
  72.     
  73. shortcut
  74. {
  75. #    editor
  76. #    {
  77. #        string name "szEditor"
  78. #        string file "ctp_program/ctp/CivCTP.exe"
  79. #        string icon "rsrc/ctp.ico"
  80. #    }
  81.  
  82.     editor_readme
  83.     {
  84.         string name "szEditorReadme"
  85.         string file "help/editor_readme.doc"
  86.         string icon "rsrc/txt.ico"
  87.     }
  88. }
  89.  
  90. start_menu
  91. {
  92.     string dir "start_menu_programs_dir:/Civilization-Call To Power"
  93.     string shortcut_10 "editor"
  94.     string shortcut_12 "editor_readme"
  95. }
  96.  
  97.  
  98.  
  99.  
  100.